home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-05-21 | 459 b | 23 lines | [TEXT/ttxt] |
- --<<<
- -- Class NavigationButton
- in module Autofinder
-
- if NOT (isdefined Button) do filein theScriptDir name:"button.sx"
-
- class NavigationButton (TwoDShape, Button)
- instance variables
- name
- end
-
- method init self {class NavigationButton} #rest args #key name: ->
- (
- apply nextMethod self args
- self.name := name
- -- self.x := x
- -- self.y := y
- self.authordata := self
- self.activateAction := (adata pb toggledOn -> print self.name)
- )
-
- "Compiled NavButn.sx"
- -->>>